home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 13 - 1997 (partial) / 13.04 Apr 97 / OpenDocExtentions / SelectPart / OSAPlugIn / OSAPlugInDef.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-19  |  989 b   |  34 lines  |  [TEXT/MPS ]

  1. /*------------------------------------------------------------------------------
  2.     File:        OSAPlugInDef.h
  3.  
  4.     Contains:    Common definitions used by the OSAPlugIn
  5.  
  6.     Written by:    Sue Dumont
  7.  
  8.     Copyright:    © 1995 by Apple Computer, Inc., all rights reserved.
  9. ------------------------------------------------------------------------------*/
  10.  
  11. #ifndef _OSAPLUGINDEF_
  12. #define _OSAPLUGINDEF_
  13.  
  14. //==============================================================================
  15. // Constants
  16. //==============================================================================
  17.  
  18. // Class / Editor ID
  19. #define kAgentID                        "Sample::SelectPartAgent"
  20. #define    kAgentPartClassName                "SelectPartAgent"
  21. #define kAgentEditorName                "Sample_SelectPartAgent"
  22.  
  23. #define kOSAPlugInOSType                'PUNR'
  24.  
  25. #define kBaseResourceID                    20001
  26.  
  27. // Bundles/FREFs
  28. #define kPlugInBundle                    kBaseResourceID
  29. #define kPlugInFREF                        kBaseResourceID
  30. #define kDocumentFREF                    kBaseResourceID+1
  31. #define kPlugInIcons                    kBaseResourceID
  32.  
  33. #endif
  34.